From: Lars Magne Ingebrigtsen Date: Fri, 15 Jul 2011 17:25:02 +0000 (+0200) Subject: * net/gnutls.el (gnutls-negotiate): Upcase `gnutls-algorithm-priority'. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2803 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b8c32ad34c0155f4e16d657b0e8c78e171fd5eec;p=emacs.git * net/gnutls.el (gnutls-negotiate): Upcase `gnutls-algorithm-priority'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4215fded170..c7c4e656190 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-07-15 Lars Magne Ingebrigtsen + + * net/gnutls.el (gnutls-negotiate): Upcase + `gnutls-algorithm-priority'. + 2011-07-15 Glenn Morris * jka-compr.el (jka-compr-verbose): Move from here... diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index f0bc8dec09d..14d4a2f28e6 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -152,7 +152,9 @@ defaults to GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT." ((eq type 'gnutls-anon) "NORMAL:+ANON-DH:!ARCFOUR-128") ((eq type 'gnutls-x509pki) - (or gnutls-algorithm-priority "NORMAL"))))) + (if gnutls-algorithm-priority + (upcase gnutls-algorithm-priority) + "NORMAL"))))) (params `(:priority ,priority-string :hostname ,hostname :loglevel ,gnutls-log-level